Post

Replies

Boosts

Views

Activity

Comment on iOS 17.4 SwiftUI .toolbar(.hidden, for: .tabBar) not work
What is TabBarView?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’24
Comment on AttributeGraph: cycle detected
That seems to be the case for me as well. Is there a way around it? I tried moving the focusfield and that didn't help.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’24
Comment on WidgetKit and CoreData/CloudKit
One part ofit nrigoni is you have to enable icloud for the extension. Unfortunately, it then fails for me because the bundle ids are different.
Replies
Boosts
Views
Activity
Nov ’23
Comment on iOS 17: objc_msgSend + 32 EXC_BAD_ACCESS KERN_INVALID_ADDRESS Crash
I'm having this too. Where did you place this code? Thanks.
Replies
Boosts
Views
Activity
Nov ’23
Comment on Retrieving a list of tracks from a library playlist
func loadLibraryPlaylists() async throws { let request = MusicLibraryRequest() let response = try await request.response() resetPlaylist() for item in response.items { playlists.append(ApplePlaylistModel(name: item.name, playlistId: item.id.rawValue)) } }
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’23
Comment on MusicKit - Dynamic Queue
Thank you! I was using this method: musicPlayer.queue = [playlist] And it worked once, and then it played the same playlist forever, no matter what I did. Changing it to your method made it work with different playlists.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’23
Comment on Define Array of protocol which conforms to Identifiable
Can someone please explain why this doesn't work? Composing protocols in this way seems obvious and natural. That it doesn't work is bewildering.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’21